Skip to main content
PATCH
/
api
/
v1
/
misc
/
pinterest
/
pin
[DISABLED] Edit an existing Pinterest pin
curl --request PATCH \
  --url https://api.bundle.social/api/v1/misc/pinterest/pin \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "teamId": "<string>",
  "postId": "<string>",
  "title": "<string>",
  "description": "<string>",
  "link": "<string>",
  "altText": "<string>",
  "note": "<string>"
}
'
{
  "success": true,
  "permalink": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json

Body

teamId
string
required
postId
string
required

The ID of the post in our database

title
string

The updated title

description
string

The updated description

The updated destination link

altText
string

The updated alt text

note
string

The updated note

Response

200

success
boolean
required